home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / unreal_detection.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  48 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security
  3. #
  4.  
  5. if(description)
  6. {
  7.   script_id(12115);
  8.   script_version ("$Revision: 1.3 $");
  9.  
  10.   name["english"] = "Unreal Tournament Server Detection";
  11.   script_name(english:name["english"]);
  12.  
  13.   desc["english"] = "
  14. The remote host is running a version of Unreal Tournament Server.
  15. The Server is used to host Internet and Local Area Network (LAN)
  16. games.  
  17.  
  18. Solution : Ensure that this sort of network gaming is in alignment
  19. with Corporate and Security Policies. 
  20. Risk factor : Low";
  21.  
  22.  
  23.   script_description(english:desc["english"]);
  24.   summary["english"] = "Detects Unreal Tournament Server";
  25.   script_summary(english:summary["english"]);
  26.   script_category(ACT_GATHER_INFO);
  27.  
  28.   script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  29.  
  30.   family["english"] = "General";
  31.   script_family(english:family["english"]);
  32.   script_dependencie("find_service.nes", "http_version.nasl");
  33.   script_require_ports("Services/www", 80);
  34.   exit(0);
  35. }
  36.  
  37.  
  38. # start script
  39. include("http_func.inc");
  40.  
  41. port = get_kb_item("Services/www");
  42. if (!port) port = 80;
  43.  
  44. banner = get_http_banner(port:port);
  45. if(!banner)exit(0);
  46.  
  47. if (egrep(string:banner, pattern:"^Server: UnrealEngine UWeb Web Server Build")) security_note(port); 
  48.